home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
CLI.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-04-09
|
545b
|
19 lines
Comment *
┌────────────────────────────────────────────────────────────────────────────┐
│Cli.asm │
│Clears the interrupt flag from C. │
│Usage: Cli │
└────────────────────────────────────────────────────────────────────────────┘
*
assume cs:_text
_text segment public byte 'code'
public _cli
_cli proc near
cli
ret
_cli endp
_text ends
end